Ekrem
Kategori:Çalışma Notları
| Tarih:
18.12.2019 14:48:00
Bu yazı 1313 defa okundu
Yeni Pencere Açma
Pencerenizin üzerinde pencere açmak istiyorsunuz. Hem ortada hem verdiğiniz ölçüde hem de adres satırının değiştirilebilir olmamasında mutabık isek aşağıdaki kod tam size göre.
Buyrun
function smsPenceresiAc(url, title, w, h) {
var w = '350';
var h = '250';
var left = (screen.width / 2) - (w / 2);
var top = (screen.height / 2) - (h / 2);
var popup = window.open(url, title, 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width=' + w + ', height=' + h + ', top=' + top + ', left=' + left);
popup.focus();